/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
  height: 9px;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #333;
}

.header {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
}

.etsyheader {
  color: #fff;
  font-size: 20px;
  position: relative;
  top: -0.1rem;
}

.main-content {
  padding: 15px;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.product-card {
  background: #000;
  border: 1px solid #333;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card .product-info {
  padding: 8px;
}

.product-card .product-info h3 {
  margin: 0 0 6px;
  font-size: 1.1em;
  color: #fff;
}

.product-card .storedescript {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  position: relative;
  top: 0.3rem;
  text-shadow: none;
  font-weight: 400;
}

.product-card .product-info a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.8em;
}

.product-card .product-info a:hover {
  background-color: #333;
}

.product-price {
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  margin: 5px 0;
  position: static;
  text-align: right;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  border-radius: 5px;
}

.visitpage {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  top: -0.1rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-card img {
      height: 200px;
  }

  .product-card .product-info h3 {
      font-size: 1em;
  }

  .product-card .storedescript {
      font-size: 16px;
  }

  .product-card .product-info a {
      font-size: 0.75em;
  }

  .product-price {
      text-align: center;
      margin-top: 10px;
  }
}
